home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00003_Global Scripts for Integration.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  11.8 KB  |  555 lines

  1. --
  2. -- Global Scripts for Integration
  3. --
  4.  
  5. -- these are global scripts that abstract the integration from the OOP implementation.
  6. -- this is the full set of scripts that can be used for integration.
  7. -- the score should never directly refer to an object.
  8.  
  9.  
  10. global gameObj, gUI  -- the two instantiated objects.
  11. global gType  -- the type of the current activity (if any)
  12. global gOldDepth  -- the original colorDepth of the monitor (to be restored at end of play)
  13. global gSoundList  -- a globally used list of sounds.
  14. global gDebug  -- only active in unprotected movies.
  15.  
  16. --commonly used buttons
  17. global gPrinterB,gBannerartB,gLeftB,gSpeakerB,gHomeB,gHelpB,gRightB
  18.  
  19. global gTotalSprites,version 
  20.  
  21. -- start the application for the first time:
  22.  
  23. on startApplication 
  24.   --  if the optionDown then 
  25.   --    set memwin = window "memmon"
  26.   --    set the fileName of memwin = the pathname & "memmon"
  27.   --    open memwin
  28.   --  end if
  29.   if the movieName contains ".dir" then set gDebug = TRUE
  30.   
  31.   set the exitLock to TRUE
  32.   if voidP (gOldDepth) then
  33.     
  34.     set gOldDepth = the colorDepth
  35.     --JCODE
  36.     --    if the machineType = 256 then
  37.     --      if the colorDepth = 8 then
  38.     --        put the colorDepth
  39.     --      else
  40.     --        alert "For better performance, we recommend that you change the monitor resolution to 256 colors."
  41.     --      end if
  42.     --    else
  43.     --      if the colordepth <> 8 then set the colorDepth = 8
  44.     --    end if
  45.     --END JCODE
  46.   end if
  47.   
  48.   -- set the timeoutLength = (30 * 60)
  49.   set the timeoutPlay = TRUE
  50.   
  51.   set gType = 0
  52.   
  53.   set gPrinterB=114
  54.   set gBannerartB=115
  55.   set gLeftB=116
  56.   set gSpeakerB=117
  57.   set gHomeB=118
  58.   set gHelpB=119
  59.   set gRightB=120
  60.   
  61.   if not objectP (gUI) then 
  62.     set gUI = new (script "Application")
  63.   end if
  64.   
  65.   
  66. end
  67.  
  68.  
  69. -- should be called by startmovie **always**
  70.  
  71. on startLib
  72.   if not objectP (gUI) then set gUI = new (script "Application")
  73.   
  74.   if objectP (gameObj) then destruct (gameObj)
  75.   set gameObj = 0
  76.   set gType = 0
  77.   
  78.   clearBanner()
  79.   
  80.   unloadCast (gUI)
  81.   cursor -1
  82.   
  83.   if objectP (gUI) then set UI = gUI
  84.   set oldDepth = gOldDepth
  85.   set soundList = gSoundList
  86.   set debug = gDebug
  87.   
  88.   clearglobals
  89.   
  90.   set gUI = UI
  91.   set gOldDepth = oldDepth
  92.   set gSoundList = soundList
  93.   set gDebug = debug
  94.   
  95.   checkGUICursors (gUI)
  96.   
  97.   --added by alex m.
  98.   --set sprite numbers for commonly used buttons (Director 6.0 only)
  99.   set gPrinterB=114
  100.   set gBannerartB=115
  101.   set gLeftB=116
  102.   set gSpeakerB=117
  103.   set gHomeB=118
  104.   set gHelpB=119
  105.   set gRightB=120
  106.   
  107.   if char 1 of version="6" then 
  108.     set gTotalSprites=120 --director 6.0
  109.   else if char 1 of version="5" then
  110.     set gTotalSprites=48  --5.0
  111.   else 
  112.     --JCODE
  113.     set gTotalSprites=120
  114.     --END JCODE
  115.   end if
  116. end
  117.  
  118.  
  119. -- should be called by stopmovie **always**
  120.  
  121. on stopLib
  122.   put "stopping..."
  123.   if isSelfContained (gUI) then closeAll ()  -- destruct both objects.
  124.   else if objectP (gameObj) then 
  125.     destruct (gameObj)
  126.     set gameObj = 0
  127.   end if
  128.   --saveMovie
  129.   cursor 4
  130. end
  131.  
  132.  
  133. -- close the navigation (on quit)
  134.  
  135. on closeNavigation 
  136.   --JCODE
  137.   --if objectP (gUI) then destruct (gUI)
  138.   --set gUI = 0  
  139. end
  140.  
  141.  
  142. on playPosFeedback 
  143.   playResponseSound (1, 1)
  144. end
  145.  
  146.  
  147. on playNegFeedback 
  148.   playResponseSound (0, 1)
  149. end
  150.  
  151.  
  152. -- do a mousedown action.
  153. -- pass the sprite of that action to the activity object
  154. -- if a failure, then pass that action to the navigation object
  155.  
  156. on doAction spr  
  157.   
  158.   if objectP (gUI) then
  159.     if mouseDown (gUI, spr) then return
  160.   end if
  161.   
  162.   if objectP (gameObj) then 
  163.     if mouseDown (gameObj, spr) then return
  164.   end if
  165.   
  166.   pass
  167. end
  168.  
  169.  
  170. -- initialize the activity.
  171. -- the movie must be on the correct frame when this is called.
  172.  
  173. on initActivityLib type
  174.   if not objectP (gameObj) then
  175.     cursor 4
  176.     set gType = type
  177.     set gameObj = new (script string (type))
  178.     cursor -1
  179.   end if
  180. end
  181.  
  182.  
  183. -- start the activity:
  184.  
  185. on initializeRound command
  186.   if objectP (gameObj) then
  187.     cursor 4
  188.     -- clearBanner (gUI)  -- EWW2 has intelligible final instructions, don't clear them!
  189.     initializeRound (gameObj)
  190.     if command <> #playControl then go "play"
  191.     unloadCast (gUI)
  192.     cursor -1
  193.   end if
  194. end
  195.  
  196.  
  197. -- reinitialize the activity:
  198.  
  199. on reinitActivity
  200.   if objectP (gameObj) then killActorList (gameObj)
  201.   updateStage
  202.   go "init"
  203. end
  204.  
  205.  
  206. -- close all instantiated objects (as with ending play):
  207.  
  208. on closeAll
  209.   if objectP (gameObj) then destruct (gameObj)
  210.   set gameObj = 0
  211.   if objectP (gUI) then destruct (gUI)
  212.   set gUI = 0
  213. end
  214.  
  215.  
  216.  
  217. -----------------
  218. -- general tools:
  219. -----------------
  220.  
  221.  
  222. on killActorList
  223.   killActorList (gUI)
  224. end
  225.  
  226.  
  227. -- check and clear memory:
  228.  
  229. on unloadAll
  230.   unloadCast (gUI)
  231. end
  232.  
  233.  
  234. -- do a basic button animation by name
  235. -- return 1 if successful, 0 if not.
  236.  
  237. on basicNameAnim name, spr
  238.   return basicNameAnim (gUI, name, spr, 6)
  239. end 
  240.  
  241.  
  242. -- turn all sprites off:
  243.  
  244. on spritesOff 
  245.   spritesOff (gUI)
  246. end
  247.  
  248.  
  249. -- manually close help:
  250.  
  251. on closeHelp 
  252.   closeHelpWin (gUI)
  253. end
  254.  
  255.  
  256. -- set up the name entry field before displaying the name field on the certificate:
  257.  
  258. on setUpPrintField
  259.   set nameSpr = 113
  260.   puppetSprite nameSpr, FALSE
  261.   set the text of member the memberNum of sprite nameSpr of castLib the castLibNum of sprite nameSpr to "Your Name"
  262.   set the rect of member the memberNum of sprite nameSpr of castLib the castLibNum of sprite nameSpr to rect (0,0,360,40)
  263.   set the border of member the memberNum of sprite nameSpr of castLib the castLibNum of sprite nameSpr to 0
  264.   set the editable of member the memberNum of sprite nameSpr of castLib the castLibNum of sprite nameSpr to TRUE
  265.   set the hilite of member the memberNum of sprite nameSpr of castLib the castLibNum of sprite nameSpr to TRUE
  266.   set the selStart = 0
  267.   set the selEnd = length (the text of member the memberNum of sprite nameSpr of castLib the castLibNum of sprite nameSpr)
  268.   unloadCast (gUI)
  269. end
  270.  
  271.  
  272. -- do a standard button animation
  273. -- return 1 if successful.
  274.  
  275. on buttonDown spr
  276.   set name = item 1 of the name of member the memberNum of sprite spr of castLib the castLIbNum of sprite spr
  277.   return basicNameAnim (gUI, name, spr, 6) 
  278. end
  279.  
  280.  
  281. -- print the screen area.
  282. -- customize the area by passing a rect.
  283.  
  284. on print r, noTextFlag, noFooterFlag
  285.   printActivitySpace (gUI, r, noTextFlag, noFooterFlag)
  286. end
  287.  
  288.  
  289. -- clear the input buffer:
  290.  
  291. on clearEvents
  292.   clearEvents (gUI)
  293. end
  294.  
  295.  
  296. -- set up the banner and play it.
  297. -- pass the rootname for the banner.
  298. -- if noPlay = TRUE then don't play the banner after setting it up
  299.  
  300. on setUpBanner rootName, noPlay
  301.   if objectP (gUI) then setUpBanner (gUI, rootName, noPlay)
  302.   else alert "gUI was not instantiated."
  303. end
  304.  
  305.  
  306. on clearBanner 
  307.   if objectP (gUI) then clearBanner (gUI)
  308.   else alert "gUI was not instantiated."
  309. end
  310.  
  311.  
  312.  
  313. ---------------------------------
  314. -- activity modification scripts:
  315. ---------------------------------  
  316.  
  317.  
  318. -- don't allow a visual change of direction in a DirectionArrow activity:
  319.  
  320. on showDirectionOff
  321.   if not objectP (gameObj) then
  322.     alert "gameObj was not instantiated."
  323.     return
  324.   end if
  325.   
  326.   showDirectionOff (gameObj)
  327. end
  328.  
  329.  
  330. on clearCanvas
  331.   if not objectP (gameObj) then
  332.     alert "gameObj was not instantiated."
  333.     return
  334.   end if
  335.   
  336.   clearCanvas(gameObj)
  337. end
  338.  
  339.  
  340. -- for #StdPaint only:
  341. -- start the canvas screen with a bitmap
  342. -- if this modification script is used, be sure that the bitmap cast member has a unique name!  There is currently no check for it.
  343. -- also, the bitmap image must be 468 x 345
  344.  
  345. on initStartingPict bmpMemberName
  346.   if not objectP (gameObj) then
  347.     alert "gameObj was not instantiated."
  348.     return
  349.   end if
  350.   
  351.   initStartingPict (gameObj, bmpMemberName)
  352. end
  353.  
  354. -- will force a type for the movie without initializing that type. 
  355. -- should be used in non-standard movies that need certain type characteristics (like C&I help pop-up)
  356.  
  357. on forceActivityType type
  358.   set gType = type
  359. end
  360.  
  361.  
  362. -- remove clicked graphics from the screen after they are hit.
  363. -- after this call, clicked objects will disappear from the screen:    
  364.  
  365. on removeClicked
  366.   removeClicked (gameObj)
  367. end
  368.  
  369.  
  370. -- add a graph to the activity (to be incremented on a correct hit)
  371. -- makeGraph ([name of basket], [spriteNum to move], [increment in pixels], [direction of movement])  
  372. -- directions: #up, #down, #left, #right
  373.  
  374. on makeGraph name, spr, pixels, direction
  375.   if not objectP (gameObj) then 
  376.     alert "gameObj was not instantiated."
  377.     return
  378.   end if
  379.   
  380.   makeGraph (gameObj, name, spr, pixels, direction)
  381. end
  382.  
  383.  
  384. -- turn off the snap to functionality for drag drop and stick activities.
  385. -- after this call, drag & stick games will not snap to postition.
  386.  
  387. on snapOff 
  388.   if not objectP (gameObj) then 
  389.     alert "gameObj was not instantiated."
  390.     return
  391.   end if
  392.   
  393.   snapOff (gameObj)
  394. end
  395.  
  396.  
  397. -- turn the randomizing off:
  398.  
  399. on randomOff
  400.   randomOff (gameObj)
  401. end
  402.  
  403.  
  404. -- set the maximum allowable clickables in a round of play:
  405.  
  406. on setMaxClickables num
  407.   setMaxClickables (gameObj, num)
  408. end
  409.  
  410.  
  411. -- set the order of presentation (single point styles) to that of the pool order:
  412.  
  413. on setByPoolOrder 
  414.   setByPoolOrder (gameObj)
  415. end
  416.  
  417.  
  418. -- change the hilite ink for drag and drop rollovers.
  419. -- all subsequent rollovers will have the new hilite ink:
  420.  
  421. on setHiliteInk num
  422.   if not objectP (gameObj) then 
  423.     alert "gameObj was not instantiated."
  424.     return
  425.   end if
  426.   
  427.   setHiliteInk (gameObj, num)
  428. end
  429.  
  430.  
  431. -- add a jiggle button to the jiggle button list.
  432. -- if num is an integer, then it will jiggle by sprite number, if it is a command then
  433. -- it will map to a corresponding sprite number.
  434.  
  435. on addJiggleButton num
  436.   case (num) of 
  437.     #print:  set num = gPrinterB
  438.     #next:   set num = gRightB
  439.     #home:   set num = gHomeB
  440.     otherwise nothing
  441.   end case
  442.   
  443.   add(the actorList, new(script "JiggleSprite Class", num))
  444. end
  445.  
  446.  
  447. -- check to see if we are done with a click & identify game:
  448.  
  449. on checkDone 
  450.   if objectP (gameObj) then done (gameObj)
  451. end
  452.  
  453.  
  454. -- move straight to the next activity in the series (if the last then return to main menu)
  455. -- do not pass go.
  456.  
  457. on nextActivity 
  458.   if objectP (gUI) then next (gUI)
  459. end
  460.  
  461.  
  462. -- initialize a picture link.
  463. -- for C&I and single point games, a picture will be placed in the 
  464. -- link sprite each time the user is prompted.  Link pictures should be placed in a cast whose root name
  465. -- is the name of the clickable cast or the draggable cast with "PictureLinks" appended.
  466.  
  467. on initPictLink spr
  468.   if objectP (gameObj) then initPictLink (gameObj, spr)
  469. end
  470.  
  471.  
  472. -- turn off the beep and "good job" reinforcement for this activity.
  473. -- no positive response sound will be played after this is called:
  474.  
  475. on noResponse 
  476.   if objectP (gameObj) then noResponse (gameObj)
  477. end
  478.  
  479.  
  480. -- turn off the positive ID sound for click and identify games.
  481. -- (useful for including ID sounds in animation sequences.)
  482.  
  483. on noIDSound
  484.   if objectP (gameObj) then noIDSound (gameObj)
  485. end
  486.  
  487.  
  488. -- in drag drop & stick exercise, do not give pos or neg reinforcement during play.  
  489. -- However, give positive reinforcement upon completion.
  490.  
  491. on waitResponse 
  492.   waitResponse (gameObj)
  493. end
  494.  
  495.  
  496. ------------------
  497. -- for development
  498. ------------------
  499.  
  500. -- debug abstraction:
  501.  
  502. on debug info
  503.   if the optionDown then put info
  504. end
  505.  
  506.  
  507. -- default mouseDown behavior.
  508.  
  509. on mouseDown
  510.   nothing
  511. end
  512.  
  513.  
  514. on timeOut 
  515.   if objectP (gameObj) then timeOut (gameObj)
  516.   if objectP (gUI) then timeOut (gUI)
  517. end
  518.  
  519.  
  520. on enterFrame
  521.   if objectP (gameObj) then stepFrame (gameObj)
  522.   if objectP (gUI) then stepFrame (gUI)
  523. end
  524.  
  525.  
  526. --added by alex m.
  527. --plays several audio files and animates speaker
  528. on animateSpeaker gSpeakerB,audioList
  529.   repeat with audio in audioList
  530.     puppetSound (audio&",prompt"),1
  531.     updatestage
  532.     set i=1
  533.     repeat while soundBusy(1)
  534.       --JCODE
  535.       theMemName = "speaker,"&i
  536.       set theMember = member theMemName of castLib "UI.cst"
  537.       set the member of sprite gSpeakerB = theMember
  538.       --END JCODE
  539.       updateStage
  540.       await 0.2
  541.       set i=i+1
  542.       if i=3 then set i=1
  543.     end repeat
  544.     set the member of sprite gSpeakerB=member "speaker"  of castLib "UI.cst"
  545.     updateStage
  546.   end repeat
  547. end
  548.  
  549.  
  550. on await t
  551.   starttimer
  552.   repeat while the timer <60*t
  553.     updatestage
  554.   end repeat
  555. end